home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00071_ClickIdentify.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.1 KB  |  165 lines

  1. --
  2. -- ClickIdentify
  3. --
  4.  
  5. -- this class handles all runtime game management
  6. -- for a typical C & I Game.
  7. -- for variations, extend this class in the individual activity.
  8.  
  9. -- constants:
  10. property delaySecs
  11.  
  12.  
  13. property ancestor
  14. property currentID
  15.  
  16. property responseFlag  -- play a response after correct answer
  17. property IDResponseFlag -- play a positive ID sound after clicking correct answer
  18. property currNum  -- the current clickable number in the series
  19. property maxNum   -- the maximum allowable clickables in the series
  20.  
  21. --JCODE
  22. global gUI
  23.  
  24. on new me
  25.   -- initialize constants:
  26.   set delaySecs = 1
  27.   
  28.   set ancestor = new (script "ClickSetUp")
  29.   
  30.   set card = 0
  31.   set responseFlag = TRUE
  32.   set IDResponseFlag = TRUE
  33.   set currNum = 0
  34.   set maxNum = 1000
  35.   
  36.   -- add (the actorList, new (script "ObjectUpdater", me))
  37.   return me
  38. end
  39.  
  40.  
  41. on destruct me
  42.   if objectP (ancestor) then destruct (ancestor)
  43.   set ancestor = 0
  44. end
  45.  
  46.  
  47. on initializeRound me
  48.   set currNum = 0
  49.   initializeRound (ancestor)
  50.   hideAnswerCards (me)
  51.   initPlay (me)
  52. end
  53.  
  54.  
  55. ----------------------
  56. -- activity modifiers:
  57. ----------------------
  58.  
  59. -- 
  60. on noResponse me
  61.   set responseFlag = FALSE
  62. end
  63.  
  64.  
  65. on noIDSound me
  66.   set IDResponseFlag = FALSE
  67. end
  68.  
  69.  
  70. on setMaxClickables me, num
  71.   set maxNum = num
  72. end
  73.  
  74.  
  75. --------------------
  76. -- activity process:
  77. --------------------
  78.  
  79. -- handle a mouseDown for all activity sprites.
  80. -- return 1 if we have hit an activity sprite, return 0 otherwise for further processing:
  81.  
  82. on mouseDown me, spr
  83.   if not isClickable (me, spr) then return 0
  84.   
  85.   set match = checkMatch (me, spr)
  86.   
  87.   if match then
  88.     if responseFlag then playResponseSound(1, 1)
  89.     
  90.     -- play the proper "ID" sound:
  91.     if IDResponseFlag then playSprite (gUI, spr, #ID)
  92.     
  93.     -- if so, move the draggable off the screen and animate the 'hit' container:
  94.     showAnswerCard (me, spr)
  95.     
  96.     -- get the label of the positive animation and go there if it exists:
  97.     set lab = string (getID (me, spr))
  98.     
  99.     
  100.     -- if there is an animation label then play that label:
  101.     if the labelList contains lab then
  102.       clearPictLink (me)
  103.       go lab
  104.       
  105.       -- otherwise check to see if we are done with the activity:
  106.     else done (me)
  107.   else
  108.     playResponseSound(0, 1)
  109.   end if
  110.   
  111.   return 1
  112. end
  113.  
  114.  
  115. -- check to see if we are done.  
  116. -- if so, then do an action.
  117.  
  118. on done me
  119.   set currNum = currNum + 1
  120.   wait (me, 1)
  121.   clearPictLink (me)
  122.   if checkDone (ancestor) or (currNum >= maxNum) then 
  123.     wait (me, delaySecs)
  124.     go "finish"
  125.     return 1
  126.   else
  127.     initPlay (me)
  128.     return 0
  129.   end if
  130. end
  131.  
  132.  
  133. on checkDoneLimit me, limit
  134.   set currNum = currNum + 1
  135.   wait (me, 1)
  136.   clearPictLink (me)
  137.   if checkDone (ancestor) or (currNum >= limit) then 
  138.     wait (me, delaySecs)
  139.     go "finish"
  140.     return 1
  141.   else
  142.     initPlay (me)
  143.     return 0
  144.   end if
  145. end
  146.  
  147.  
  148.  
  149. -- initialize an individual play:
  150.  
  151. on initPlay me
  152.   set activeSpr = initPlay (ancestor)
  153.   makePictLink (me, activeSpr)
  154.   
  155.   -- play the intro sound by sprite...
  156.   playSprite (gUI, activeSpr, #prompt)
  157.   
  158.   -- setUpBanner(gUI, currID)
  159.   set lst = getClickableList (me)
  160.   initHandCursor ("pointer", lst)
  161. end
  162.  
  163.  
  164.  
  165.